home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / small_c.arc / STDIO.H < prev   
Text File  |  1985-08-21  |  408b  |  22 lines

  1. /*
  2. ** STDIO.H -- Standard Small-C Definitions
  3. **
  4. ** Copyright 1983  L. E. Payne and J. E. Hendrix
  5. */
  6. #define stdin    0
  7. #define stdout   1
  8. #define stderr   2
  9. #define stdaux   3
  10. #define stdprn   4
  11. #define ERR   (-2)
  12. #define EOF   (-1)
  13. #define YES      1
  14. #define NO       0
  15. #define NULL     0
  16. #define CR      13
  17. #define LF      10
  18. #define BELL     7
  19. #define SPACE  ' '
  20. #define NEWLINE LF
  21.  
  22.